Like Predicate Escape Characters
In a LIKE predicate, the percent sign (%) matches zero or more of any character and the underscore (_) matches any one character. To match an actual percent sign or underscore in a LIKE predicate, an escape character must precede the % or _. The escape sequence that defines the LIKE predicate escape character is:
where
escape-characteris any character supported by the data source.Example:
Returns all the customers for which the name starts with "%AAA".